home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 014 / vdl.arc / VDL.DOC < prev   
Text File  |  1985-04-13  |  2KB  |  44 lines

  1.  
  2.                 VDL.COM  -  Verify wildcard file deletion
  3.  
  4.                        Use:  vdl [d:][path]filespec
  5.                              vdl [d:][path]dir
  6.  
  7.         This program is designed to function like Jeff Garber's VDEL (PC 
  8. Tech Journal, vol.1 no.5).  It uses DOS 2.00 function calls to enable the 
  9. use of paths and sub-directories, however, so it requires DOS 2.00 or 
  10. subsequent versions.  In addition, it displays the usual directory 
  11. information, along with the filename, in the verification prompt. 
  12.         VDL will be most useful when the filespec on the command line 
  13. contains global filename characters (* or ?) or just a directory name.
  14. A list of matching files is presented in directory format, one entry at a 
  15. time, each followed by a '?'.    The response to this prompt determines 
  16. the action taken:
  17.  
  18.         'y' or 'Y'      file deleted.           search continues
  19.         Esc             no action on this file, search ends
  20.         (any other)     no action on this file, search continues
  21. e.g.:
  22.     A>vdl c:temp\xxx.*                                      [response]
  23.     XXX     .ASM    #bytes  date    time    ?               [' ']
  24.     XXX     .OBJ    #bytes  date    time    ? Deleted.      ['y']
  25.     XXX     .BAK    #bytes  date    time    ? Deleted.      ['y']
  26.     XXX     .EXE    #bytes  date    time    ?               [Esc]
  27.     Search ended.
  28.  
  29.     A>
  30.  
  31. In this version the keyboard buffer is cleared before each response.  The 
  32. [d:][path], when used, is not echoed in the display.  Directory entries 
  33. with special attributes will not be found.  VDL accepts '\' or '/' as 
  34. path separator, '[d:].' as current directory, '[d:]..' as parent 
  35. directory, and '[d:]/' or '[d:]\' as root directory.  (DOS 2.0 doesn't 
  36. like '.' for current directory if it is the root directory.) 
  37.  
  38.         Before serious use, try this command out with a bunch of dummy 
  39. files to make sure it is working properly and its behavior is understood.
  40.  
  41. Tom Roberts
  42. 3/23/84
  43.  
  44.